<!DOCTYPE html>
<html>
<body>
<?php
// Print dst, offset, and timezone name for the "act" timezone
$tzlist=timezone_abbreviations_list();
print_r($tzlist["act"]);
// Print the whole list
//print_r(timezone_abbreviations_list());
?>
</body>
</html>